 
            | Working with PrizmDoc > Administering PrizmDoc > System Configuration > Configuring the Viewing Client > Configuration Options > Pre-Loaded Search Parameters | 
This object contains all predefined search options:
| Parameter | Data Type | Description | |
| highlightColor | String | The default highlight color of the search terms. This is overridden by the term-level parameter. This must be in 6 digit hexadecimal format preceded by a #. Example: "#ee3a8c" | |
| searchOnInit | Boolean | Run search on launch. | |
| globalOptions | Object | Set the default search options for each of the predefined search terms. This is overridden by the term-level "options" parameter. Example: 
 | |
| terms | Array | An array of objects that represent the search terms that will be available in the predefined search menu. Example: 
 | 
predefinedSearch terms
This object represents the search terms that will be available in the predefined search menu:
| Parameter | Data Type | Description | |
| searchTerm | String | The search string for the term object. This is overridden by the userDefinedRegex parameter. | |
| userDefinedRegex | String | A regular expression that will be searched in place of searchTerm. The first and last forward slashes, as well as the flags, are stripped from the string. For example, "/Pa(\\w+)/ig" will become "Pa(\\w+)". When special characters (ex: backslash) are used in the "userDefinedRegex" field, they need to be properly escaped. For example, for searching words that begins with "Pa", the regular expression will be "Pa(\w+)", this regular expression should be properly escaped like this "Pa(\\w+)". All patterns use the Global(g) flag. Example: 
 | |
| selected | Boolean | Whether or not this term will be selected in the menu. | |
| options | Object | Set the search options for this term. If a parameter is not defined it will inherit the globalOptions-level parameter. Example: 
 |